home *** CD-ROM | disk | FTP | other *** search
/ Interactive Preview: Enemy of the State / Interactive Preview: Enemy of the State.iso / pc / main.dxr / 00235_scroll sound -.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  504 b   |  29 lines

  1. on mouseDown me
  2.   repeat while the stillDown
  3.     set the memberNum of sprite the spriteNum of me to 269
  4.     updateStage()
  5.   end repeat
  6. end
  7.  
  8. on mouseUp me
  9.   set the memberNum of sprite the spriteNum of me to 268
  10.   if rollOver(the clickOn) then
  11.     set s to the memberNum of sprite 10
  12.     if s = 260 then
  13.       set s to 266
  14.     else
  15.       set s to s - 1
  16.     end if
  17.     updateStage()
  18.     set the memberNum of sprite 10 to s
  19.   end if
  20. end
  21.  
  22. on mouseEnter me
  23.   cursor(280)
  24. end
  25.  
  26. on mouseLeave me
  27.   cursor(0)
  28. end
  29.